home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Przegladarki internetowe / Mozilla Seamonkey 1.0.5 pl / seamonkey-1.0.5.pl-PL.win32.installer.exe / BROWSER.XPI / bin / components / xulappinfo.js < prev   
Encoding:
Text File  |  2006-09-10  |  2.4 KB  |  88 lines

  1. const XULAPPINFO_CONTRACTID = "@mozilla.org/xre/app-info;1";
  2. const XULAPPINFO_CID = Components.ID("{f8b59582-5808-4e6e-a467-339e9c82756f}");
  3.  
  4. const nsIXULAppInfo = Components.interfaces.nsIXULAppInfo;
  5. const nsIComponentRegistrar = Components.interfaces.nsIComponentRegistrar;
  6. const nsIFactory = Components.interfaces.nsIFactory;
  7.  
  8. function XULAppInfoService()
  9. {}
  10.  
  11. XULAppInfoService.prototype.vendor = "mozilla.org";
  12. XULAppInfoService.prototype.ID = "{92650c4d-4b8e-4d2a-b7eb-24ecf4f6b63a}";
  13. XULAppInfoService.prototype.name = "SeaMonkey";
  14. XULAppInfoService.prototype.version = "1.0.5";
  15. XULAppInfoService.prototype.appBuildID = "2006091003";
  16. XULAppInfoService.prototype.platformVersion = "1.8.0.7";
  17. XULAppInfoService.prototype.platformBuildID = "2006091003";
  18. //@line 18 "/cygdrive/c/tinderbox/release-SeaMonkey-1.0/WINNT_5.1_Clobber/mozilla/suite/components/xulappinfo/xulappinfo.js"
  19.  
  20. XULAppInfoService.prototype.QueryInterface =
  21. function appinfo_QueryInterface(iid)
  22. {
  23.     if (!iid.equals(nsIXULAppInfo) &&
  24.         !iid.equals(nsISupports))
  25.     {
  26.         throw Components.results.NS_ERROR_NO_INTERFACE;
  27.     }
  28.  
  29.     return this;
  30. }
  31.  
  32. var XULAppInfoFactory = new Object();
  33.  
  34. XULAppInfoFactory.createInstance =
  35. function(outer, iid)
  36. {
  37.     if (outer != null)
  38.         throw Components.results.NS_ERROR_NO_AGGREGATION;
  39.  
  40.     if (!iid.equals(nsIXULAppInfo) && !iid.equals(nsISupports))
  41.         throw Components.results.NS_ERROR_INVALID_ARG;
  42.  
  43.     return new XULAppInfoService();
  44. }
  45.  
  46.  
  47. var XULAppInfoModule = new Object();
  48.  
  49. XULAppInfoModule.registerSelf =
  50. function mod_registerSelf(compMgr, fileSpec, location, type)
  51. {
  52.     compMgr = compMgr.QueryInterface(nsIComponentRegistrar);
  53.  
  54.     compMgr.registerFactoryLocation(XULAPPINFO_CID,
  55.                                     "XUL AppInfo service",
  56.                                     XULAPPINFO_CONTRACTID,
  57.                                     fileSpec, location, type);
  58. }
  59.  
  60. XULAppInfoModule.unregisterSelf =
  61. function mod_unregisterSelf(compMgr, fileSpec, location)
  62. {
  63. }
  64.  
  65. XULAppInfoModule.getClassObject =
  66. function mod_getClassObject(compMgr, cid, iid)
  67. {
  68.     if (cid.equals(XULAPPINFO_CID))
  69.         return XULAppInfoFactory;
  70.  
  71.     if (!iid.equals(nsIFactory))
  72.         throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
  73.  
  74.     throw Components.results.NS_ERROR_NO_INTERFACE;
  75. }
  76.  
  77. XULAppInfoModule.canUnload =
  78. function mod_canUnload(compMgr)
  79. {
  80.     return true;
  81. }
  82.  
  83. /* entrypoint */
  84. function NSGetModule(compMgr, fileSpec)
  85. {
  86.     return XULAppInfoModule;
  87. }
  88.